///******************************************************************************* // * Copyright (c) 2000, 2005 IBM Corporation and others. // * All rights reserved. This program and the accompanying materials // * are made available under the terms of the Eclipse Public License v1.0 // * which accompanies this distribution, and is available at // * http://www.eclipse.org/legal/epl-v10.html // * // * Contributors: // * IBM Corporation - initial API and implementation // *******************************************************************************/ //package org.eclipse.ui.tests.multieditor; // //import org.eclipse.core.runtime.IProgressMonitor; //import org.eclipse.swt.SWT; //import org.eclipse.swt.layout.RowLayout; //import org.eclipse.swt.widgets.Composite; //import org.eclipse.swt.widgets.Label; //import org.eclipse.ui.IEditorInput; //import org.eclipse.ui.IEditorSite; //import org.eclipse.ui.IFileEditorInput; //import org.eclipse.ui.PartInitException; //import org.eclipse.ui.part.EditorPart; // ///** // * A test editor that does pretty-well nothing. Activating it will // * update the coolbar, and possibly eventually the outline as well. // * // * @since 3.1 // * // */ //public class TestEditor extends EditorPart { // // private Composite fMainPanel; // // public TestEditor() { // super(); // // TODO Auto-generated constructor stub // } // // public void doSave(IProgressMonitor monitor) { // // TODO Auto-generated method stub // // } // // public void doSaveAs() { // // TODO Auto-generated method stub // // } // // public void init(IEditorSite site, IEditorInput input) // throws PartInitException { // if (!(input instanceof IFileEditorInput)) // throw new PartInitException( // "Invalid Input: Must be IFileEditorInput"); // setSite(site); // setInput(input); // // } // // public boolean isDirty() { // // TODO Auto-generated method stub // return false; // } // // public boolean isSaveAsAllowed() { // // TODO Auto-generated method stub // return false; // } // // public void createPartControl(Composite parent) { // fMainPanel = new Composite(parent, SWT.NONE); // fMainPanel.setLayout(new RowLayout(SWT.VERTICAL)); // // Label l = new Label(fMainPanel, SWT.NONE); // l.setText("Editor Title:"); // // l = new Label(fMainPanel, SWT.BORDER); // l.setText(getEditorInput().getName()); // } // // /* // * (non-Javadoc) // * // * @see org.eclipse.ui.part.WorkbenchPart#setFocus() // */ // public void setFocus() { // fMainPanel.setFocus(); // } // //}